The message should be manipulated via push() and pop().
gtk_statusbar_pop
gtk_statusbar_remove
gtk_statusbar_remove_all
-gtk_statusbar_get_message_area
<SUBSECTION Standard>
GTK_STATUSBAR
GTK_IS_STATUSBAR
#include <string.h>
#include <gtk/gtk.h>
+#include "gtkstatusbarprivate.h"
#include "gtkstatusbaraccessible.h"
obj->role = ATK_ROLE_STATUSBAR;
}
-static GtkWidget *
-find_label_child (GtkContainer *container)
-{
- GList *children, *tmp_list;
- GtkWidget *child;
-
- children = gtk_container_get_children (container);
-
- child = NULL;
- for (tmp_list = children; tmp_list != NULL; tmp_list = tmp_list->next)
- {
- if (GTK_IS_LABEL (tmp_list->data))
- {
- child = GTK_WIDGET (tmp_list->data);
- break;
- }
- else if (GTK_IS_CONTAINER (tmp_list->data))
- {
- child = find_label_child (GTK_CONTAINER (tmp_list->data));
- if (child)
- break;
- }
- }
- g_list_free (children);
-
- return child;
-}
-
-static GtkWidget *
-get_label_from_statusbar (GtkStatusbar *statusbar)
-{
- GtkWidget *box;
-
- box = gtk_statusbar_get_message_area (statusbar);
-
- return find_label_child (GTK_CONTAINER (box));
-}
-
static const gchar *
gtk_statusbar_accessible_get_name (AtkObject *obj)
{
const gchar *name;
GtkWidget *widget;
- GtkWidget *label;
widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
if (widget == NULL)
if (name != NULL)
return name;
- label = get_label_from_statusbar (GTK_STATUSBAR (widget));
- if (GTK_IS_LABEL (label))
- return gtk_label_get_label (GTK_LABEL (label));
-
- return NULL;
+ return gtk_statusbar_get_message (GTK_STATUSBAR (widget));
}
static gint
#include "config.h"
#include "gtkstatusbar.h"
+#include "gtkstatusbarprivate.h"
#include "gtkbinlayout.h"
#include "gtkframe.h"
}
}
-/**
+/** < private >
* gtk_statusbar_get_message_area:
* @statusbar: a #GtkStatusbar
*
*
* Returns: (type Gtk.Box) (transfer none): a #GtkBox
*/
-GtkWidget*
-gtk_statusbar_get_message_area (GtkStatusbar *statusbar)
+const char*
+gtk_statusbar_get_message (GtkStatusbar *statusbar)
{
GtkStatusbarPrivate *priv = gtk_statusbar_get_instance_private (statusbar);
g_return_val_if_fail (GTK_IS_STATUSBAR (statusbar), NULL);
- return priv->message_area;
+ return gtk_label_get_label (GTK_LABEL (priv->label));
}
static void
void gtk_statusbar_remove_all (GtkStatusbar *statusbar,
guint context_id);
-GDK_AVAILABLE_IN_ALL
-GtkWidget* gtk_statusbar_get_message_area (GtkStatusbar *statusbar);
-
G_END_DECLS
#endif /* __GTK_STATUSBAR_H__ */
--- /dev/null
+/* GTK - The GIMP Toolkit
+ * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
+ * GtkStatusbar Copyright (C) 1998 Shawn T. Amundson
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __GTK_STATUSBAR_PRIVATE_H__
+#define __GTK_STATUSBAR_PRIVATE_H__
+
+#include "gtkwidget.h"
+
+G_BEGIN_DECLS
+
+const char * gtk_statusbar_get_message (GtkStatusbar *statusbar);
+
+G_END_DECLS
+
+#endif /* __GTK_STATUSBAR_H__ */